-
Notifications
You must be signed in to change notification settings - Fork 10.3k
Attempt to reduce intermittent failures in the "multiple render() on the same canvas" unit-test #12171
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Attempt to reduce intermittent failures in the "multiple render() on the same canvas" unit-test #12171
Conversation
…the same canvas" unit-test This patch should *hopefully* remove the intermittent unit-test failure, by using the *same* `optionalContentConfigPromise` for both `renderTask`s and thus get more predictable timing behaviour.
/botio unittest |
From: Bot.io (Linux m4)ReceivedCommand cmd_unittest from @Snuffleupagus received. Current queue size: 0 Live output at: http://54.67.70.0:8877/39c3e2e634755b3/output.txt |
From: Bot.io (Windows)ReceivedCommand cmd_unittest from @Snuffleupagus received. Current queue size: 0 Live output at: http://54.215.176.217:8877/db158c893274cf5/output.txt |
From: Bot.io (Linux m4)FailedFull output at http://54.67.70.0:8877/39c3e2e634755b3/output.txt Total script time: 3.84 mins
|
From: Bot.io (Windows)SuccessFull output at http://54.215.176.217:8877/db158c893274cf5/output.txt Total script time: 4.92 mins
|
/botio unittest |
From: Bot.io (Linux m4)ReceivedCommand cmd_unittest from @Snuffleupagus received. Current queue size: 0 Live output at: http://54.67.70.0:8877/4f7f620d87da3ab/output.txt |
From: Bot.io (Windows)ReceivedCommand cmd_unittest from @Snuffleupagus received. Current queue size: 0 Live output at: http://54.215.176.217:8877/24d0051a3801282/output.txt |
From: Bot.io (Linux m4)SuccessFull output at http://54.67.70.0:8877/4f7f620d87da3ab/output.txt Total script time: 3.85 mins
|
From: Bot.io (Windows)SuccessFull output at http://54.215.176.217:8877/24d0051a3801282/output.txt Total script time: 4.62 mins
|
/botio unittest |
From: Bot.io (Linux m4)ReceivedCommand cmd_unittest from @Snuffleupagus received. Current queue size: 0 Live output at: http://54.67.70.0:8877/9a657ac1b671874/output.txt |
From: Bot.io (Windows)ReceivedCommand cmd_unittest from @Snuffleupagus received. Current queue size: 0 Live output at: http://54.215.176.217:8877/94052c570547f05/output.txt |
From: Bot.io (Linux m4)SuccessFull output at http://54.67.70.0:8877/9a657ac1b671874/output.txt Total script time: 3.93 mins
|
From: Bot.io (Windows)SuccessFull output at http://54.215.176.217:8877/94052c570547f05/output.txt Total script time: 4.76 mins
|
/botio unittest |
From: Bot.io (Windows)ReceivedCommand cmd_unittest from @Snuffleupagus received. Current queue size: 0 Live output at: http://54.215.176.217:8877/532e8d272a6f1d7/output.txt |
From: Bot.io (Linux m4)ReceivedCommand cmd_unittest from @Snuffleupagus received. Current queue size: 0 Live output at: http://54.67.70.0:8877/6210143981aab08/output.txt |
From: Bot.io (Linux m4)SuccessFull output at http://54.67.70.0:8877/6210143981aab08/output.txt Total script time: 3.94 mins
|
From: Bot.io (Windows)SuccessFull output at http://54.215.176.217:8877/532e8d272a6f1d7/output.txt Total script time: 4.82 mins
|
/botio unittest |
From: Bot.io (Linux m4)ReceivedCommand cmd_unittest from @Snuffleupagus received. Current queue size: 0 Live output at: http://54.67.70.0:8877/c53d69ce8038547/output.txt |
From: Bot.io (Windows)ReceivedCommand cmd_unittest from @Snuffleupagus received. Current queue size: 0 Live output at: http://54.215.176.217:8877/41fbe202a3b7234/output.txt |
From: Bot.io (Linux m4)FailedFull output at http://54.67.70.0:8877/c53d69ce8038547/output.txt Total script time: 3.88 mins
|
From: Bot.io (Windows)SuccessFull output at http://54.215.176.217:8877/41fbe202a3b7234/output.txt Total script time: 4.69 mins
|
/botio unittest |
From: Bot.io (Linux m4)ReceivedCommand cmd_unittest from @Snuffleupagus received. Current queue size: 0 Live output at: http://54.67.70.0:8877/b126ae4fcf45a73/output.txt |
From: Bot.io (Windows)ReceivedCommand cmd_unittest from @Snuffleupagus received. Current queue size: 0 Live output at: http://54.215.176.217:8877/3f76d65e21648ce/output.txt |
From: Bot.io (Linux m4)SuccessFull output at http://54.67.70.0:8877/b126ae4fcf45a73/output.txt Total script time: 3.84 mins
|
From: Bot.io (Windows)SuccessFull output at http://54.215.176.217:8877/3f76d65e21648ce/output.txt Total script time: 4.68 mins
|
Nice find; thank you for getting rid of all those pesky intermittents the last few days! |
No problem; in the event that this patch still isn't enough, there's additional things can be done to really fix the test. However that may render it somewhat "messy", hence I went with a simpler approach for now. |
This patch should hopefully remove the intermittent unit-test failure, by using the same
optionalContentConfigPromise
for bothrenderTask
s and thus get more predictable timing behaviour.